(file-truename): Undo last change.
authorRoland McGrath <roland@gnu.org>
Wed, 28 Apr 1993 17:33:42 +0000 (17:33 +0000)
committerRoland McGrath <roland@gnu.org>
Wed, 28 Apr 1993 17:33:42 +0000 (17:33 +0000)
lisp/files.el

index 75e91e6b83d9c54c6de16641f9b4fefb4b6cbe67..b0f92ed0bb51df99771c43a8aa10e48a873de980 100644 (file)
@@ -314,10 +314,7 @@ The truename of a file name is found by chasing symbolic links
 both at the level of the file and at the level of the directories
 containing it, until no links are left at any level."
   (if (string= filename "~")
-      (progn
-       (setq filename (expand-file-name filename))
-       (if (string= filename "")
-           (setq filename "/"))))
+      (setq filename (expand-file-name filename)))
   (let ((handler (find-file-name-handler filename)))
     ;; For file name that has a special handler, call handler.
     ;; This is so that ange-ftp can save time by doing a no-op.